home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / driver_context.sql < prev    next >
Text File  |  2000-05-12  |  885b  |  23 lines

  1. /* RCSVER $Id: driver_context.sql,v 1.1 1999-06-03 13:14:17-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        driver_context.sql
  6. * Date:        05/31/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the driver_context table. This table contains
  9. *               derived probed data from the route change/shift start   
  10. *               records.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE driver_context
  14. (
  15.     driver_context_id     NUMBER(38),
  16.     route_id        NUMBER(38),
  17.     run_id            NUMBER(38),    
  18.     trip_id            NUMBER(38),    
  19.     rte_date        DATE,        /* route change date/time */
  20.     op_context_id        NUMBER(38),    /* references operator_context */
  21.         CONSTRAINT pk_driver_context PRIMARY KEY (driver_context_id)
  22. );
  23.